home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / angry / scene1_2.dir / 00003_Script_guyRollOver < prev    next >
Text File  |  1999-03-01  |  413b  |  22 lines

  1. --FRAME: guyRollOver
  2.  
  3. on enterFrame
  4.   if rollover(2) then 
  5.     set the member of sprite(5) to member "GuyRollOverLOOP"
  6.     cursor [the memberNum of member "pointy", the memberNum of member "pointy_mask"]
  7.     
  8.   end if
  9.   
  10.   if NOT rollover(2) then 
  11.     set the member of sprite(5) to "GuyStand"
  12.     cursor -1
  13.     go to frame "resetGuy"
  14.     
  15.   end if
  16.   
  17. end
  18.  
  19.  
  20. on exitFrame
  21.   go to the frame
  22. end